home *** CD-ROM | disk | FTP | other *** search
- /*
- ******************************************************************************
- * NCSA ImageTool 1.1 beta
- * Thu Sep 20 16:58:25 CDT 1990
- *
- * NCSA ImageTool 1.1 beta source code and documentation are in the public
- * domain.
- * Specifically, we give to the public domain all rights for future licensing
- * of the source code, all resale rights, and all publishing rights.
- *
- * We ask, but do not require, that the following message be included in all
- * derived works:
- *
- * Portions developed at the National Center for Supercomputing Applications at
- * the University of Illinois at Urbana-Champaign.
- *
- * THE UNIVERSITY OF ILLINOIS GIVES NO WARRANTY, EXPRESSED OR IMPLIED, FOR THE
- * SOFTWARE AND/OR DOCUMENTATION PROVIDED, INCLUDING, WITHOUT LIMITATION,
- * WARRANTY OF MERCHANTABILITY AND WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE
- *
- ******************************************************************************
- */
- /* cat > headers/all.h << "EOF" */
- /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
- /* all.h: common include files for ImageTool 1.1 */
- /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
- /* SCCS information: %W% %G% */
-
- #ifndef HEADER_ALL /* avoid reinclusion */
- #define HEADER_ALL
-
- #include <stdio.h>
-
- /* ~~~~~~~~~~~~~~~~~~~~ 1.1 additions ~~~~~~~~~~~~~~~~~~~~ */
-
- #if sun
- #if i386 || i486
- #define SUN386
- #elif mc68000 || mc68010 || mc68020 || mc68030 || sparc
- #define SUN
- #endif
- #endif
-
- #include "df.h"
- #include "dfgr.h"
- #include "dfsd.h"
-
- /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
-
- #include <suntool/sunview.h>
- #include <suntool/panel.h>
- #include <suntool/canvas.h>
- #include <suntool/scrollbar.h>
- #include <suntool/tty.h>
- #include <suntool/textsw.h>
- #include <suntool/seln.h>
- #include <pixrect/pixrect.h>
- #include <pixrect/pixfont.h>
- #include <sys/file.h>
- #include <sys/dir.h>
- #include <sys/param.h>
- #include <sys/stat.h>
- #include <sys/time.h>
- #include <sys/types.h>
- #include <math.h>
- #include <ctype.h>
- #include <pwd.h>
- #include <string.h> /* SUN BUG (386i - 4.0.1)! Cannot put
- string.h after sunwindow/defaults.h.
- ERRORS! */
-
- /* ~~~~~~~~~~~~~~~~~~~~ 1.1 additions ~~~~~~~~~~~~~~~~~~~~ */
-
- #include <sunwindow/defaults.h> /* for defaults database */
-
- /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
-
- #include "const.h"
- #include "struct.h"
- #include "extvar.h"
- #include "extfunc.h"
-
- #endif /* HEADER_ALL */
- /* EOF */
-